home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 December / PCWorld_2006-12_cd.bin / v cisle / ophcrack / ophcrack-win32-installer-2.3.3.exe / {app} / src / make_redux.h < prev    next >
C/C++ Source or Header  |  2006-10-10  |  2KB  |  62 lines

  1. /*
  2.  
  3.     This file is part of Ophcrack (Time-Memory-Trade-Off-crack).
  4.  
  5.     Ophcrack is a Lanmanager/NTLM hash cracker based on the faster time-memory
  6.     trade-off using rainbow tables. 
  7.     
  8.     Created with the help of: Maxime Mueller, Luca Wullschleger, Claude
  9.     Hochreutiner, Andreas Huber and Etienne Dysli.
  10.  
  11.     Copyright 2006 Philippe Oechslin, Cedric Tissieres
  12.  
  13.     Ophcrack is free software; you can redistribute it and/or modify
  14.     it under the terms of the GNU General Public License as published by
  15.     the Free Software Foundation; either version 2 of the License, or
  16.     (at your option) any later version.
  17.  
  18.     Ophcrack is distributed in the hope that it will be useful,
  19.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.     GNU General Public License for more details.
  22.  
  23.     You should have received a copy of the GNU General Public License
  24.     along with Ophcrack; if not, write to the Free Software
  25.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  26.  
  27.     This program is released under the GPL with the additional exemption 
  28.     that compiling, linking, and/or using OpenSSL is allowed.
  29. */
  30.  
  31.  
  32. /* Reduction functions to make passwords from hashes */
  33.  
  34. /* $Id: make_redux.h,v 1.0 2004/07/09 12:54:15 oechslin Exp $
  35.  *
  36.  * $Log: make_redux.h,v $
  37.  * Revision 2.3  2006/07/21 tissieres
  38.  * Added NTLM support
  39.  *
  40.  * Revision 1.0  2004/07/09 12:54:15  oechslin
  41.  * Initial revision
  42.  *
  43.  *
  44.  */
  45.  
  46. #include <limits.h>
  47.  
  48.  
  49. extern unsigned char* charset;
  50.  
  51. extern int perm[];
  52.  
  53. extern int n_redux;
  54.  
  55. void init_redux(int ident, int length);
  56.  
  57. void next_redux();
  58.  
  59. void set_redux(int col, int table);
  60.  
  61. void make_redux(unsigned char *in, unsigned char *out);
  62.